home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Documents / OOPClass / Labs / RPNCalculator / Stack.h < prev    next >
Encoding:
Text File  |  1992-08-11  |  143 b   |  16 lines

  1. // Stack.h
  2. #import <objc/Storage.h>
  3.  
  4. @interface Stack : Storage
  5.  
  6.  
  7. }
  8.  
  9. - push:(float)aNumber;
  10. - (float)pop;
  11. - printStack;
  12. - (float)top;
  13.  
  14. @end
  15.